Spread WPF 17
GrapeCity.CalcEngine.Functions Namespace / CalcImPowerFunction Class / Evaluate Method / Evaluate(Object[]) Method

The args contains 2 items: inumber, number.

Inumber is a complex number you want to raise to a power.

Number is the power to which you want to raise the complex number.



In This Topic
    Evaluate(Object[]) Method
    In This Topic
    Returns a System.String complex number in x + yi or x + yj text format raised to a power.
    Syntax
    'Declaration
     
    Public Overloads Overrides Function Evaluate( _
       ByVal args() As Object _
    ) As Object
    'Usage
     
    Dim instance As CalcImPowerFunction
    Dim args() As Object
    Dim value As Object
     
    value = instance.Evaluate(args)
    public override object Evaluate( 
       object[] args
    )

    Parameters

    args

    The args contains 2 items: inumber, number.

    Inumber is a complex number you want to raise to a power.

    Number is the power to which you want to raise the complex number.

    Return Value

    A System.String value that indicates the evaluate result.
    See Also